/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --thm-font: 'Roboto', sans-serif;
    --thm-reey-font: 'reeyregular';
    --thm-gray: #737373;
    --thm-gray-rgb: 115, 115, 115;
    --thm-primary: #f2d00d;
    --thm-primary-rgb: 157, 148, 130;
    --thm-black: #000000;
    --thm-black-rgb: 0, 0, 0;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #737373;
    font-size: 18px;
    line-height: 34px;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: #737373;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::placeholder {
    color: inherit;
    opacity: 1;
}


.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.section-separator {
    border-color: var(--thm-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}

.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18.5px 60px;
    transition: 500ms;
    letter-spacing: 0.1em;
}

.thm-btn:before {
    position: absolute;
    bottom: -5px;
    width: 100%;
    height: 1px;
    left: 0;
    background: #ffffff;
    content: "";
    transition: transform 500ms ease;
    transform-origin: left center;
    transform: scale(1, 1);
}

.thm-btn:hover {
    background: #f2d00d;
    color: #ffffff;
}

.thm-btn:hover::before {
    transform: scale(0, 1);
    transform-origin: right center;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    font-family: 'Roboto', sans-serif;
}

.section-title {
    margin-top: -11px;
    margin-bottom: 50px;
}

.section-title__tagline {
    position: relative;
    display: inline-block;
    color: #737373;
    font-size: 16px;
    font-weight: 400;
    align-items: center;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 2px;
    letter-spacing: 0.1em;
}

.section-title__tagline::before {
    content: '';
    background-color: #e5e5e5;
    height: 6px;
    bottom: 7px;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.section-title__title {
    margin: 0;
    font-weight: 500;
    color: #000000;
    font-size: 50px;
    line-height: 60px;
    text-transform: uppercase;
}





/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
        transform: translateY(50px) translateX(100px) rotate(45deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes shapeMover {

    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }

    50% {
        transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@keyframes banner3Shake {
    0% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }

    30% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    60% {
        -webkit-transform: rotate3d(1, 0, 0, 0deg);
        transform: rotate3d(1, 0, 0, 0deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@keyframes squareMover {

    0%,
    100% {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0);
    }

    20%,
    60% {
        -webkit-transform: translate(20px, 40px) rotate(180deg);
        transform: translate(20px, 40px) rotate(180deg);
    }

    30%,
    80% {
        -webkit-transform: translate(40px, 60px) rotate(0deg);
        transform: translate(40px, 60px) rotate(0deg);
    }
}

@keyframes treeMove {

    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        -webkit-transform: rotate(5deg) translateX(15px);
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        -webkit-transform: rotate(10deg) translateX(30px);
        transform: rotate(10deg) translateX(30px);
    }
}


/*--------------------------------------------------------------
#     Zoom Fade Css
--------------------------------------------------------------*/
.zoom-fade {
    animation-name: zoom-fade;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    -o-animation-name: zoom-fade;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}


@keyframes service_hexagon_2 {
    0% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}


/*--------------------------------------------------------------
# Steps
--------------------------------------------------------------*/
.steps {
    position: relative;
    display: block;
    margin-top: 5px;
    z-index: 2;
    counter-reset: stepsCount;
}

.steps__inner {
    position: relative;
    display: block;
}

.steps__inner .row {
    --bs-gutter-x: 0px;
}

.steps__single {
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 10%);
    justify-content: center;
    line-height: 0;
    padding: 27px 0;
    counter-increment: stepsCount;
}

.steps__icon {
    position: relative;
}

.steps__icon span {
    font-size: 65px;
    color: #000000;
    line-height: 65px;
}

.steps__count {
    position: absolute;
    top: -5px;
    right: -8px;
    height: 32px;
    width: 32px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}


.steps__count::before {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    content: counters(stepsCount, ".", decimal-leading-zero);
    transition: all 500ms ease;
}

.steps__single:hover .steps__count {
    background-color: #000000;
    color: #fff;
}

.steps__text {
    margin-left: 25px;
}

.steps__text h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
    position: relative;
    display: block;
    background-color: #f2d00d;
    padding: 113px 0 49px;
    margin-top: -72px;
}

.cta-one-pattern {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.10;
}

.cta-one__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-one__content {
    position: relative;
    display: block;
}

.cta-one__text {
    font-size: 36px;
    color: #ffffff;
    line-height: 46px;
    font-weight: 500;
}

.cta-one__btn-box {}

.cta-one__btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.cta-one__btn-box .thm-btn:before {
    background: #000000;
}

/*--------------------------------------------------------------
# Welcome Two
--------------------------------------------------------------*/
.welcome-two {
    position: relative;
    display: block;
    padding: 91px 0 72px;
}

.welcome-two-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 689px;
    width: 509px;
    opacity: 0.15;
    z-index: -1;
    -webkit-animation-name: shapeMover;
    animation-name: auto;
    -webkit-animation-duration: 15s;
    animation-duration: 15s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-perspective: 100px;
    perspective: 100px;
    -webkit-transform-origin: center center;
    transform-origin: center center;

}

.welcome-two__left {
    position: relative;
    display: block;
    margin-right: 60px;
}

.welcome-two__img {
    position: relative;
    display: block;
}

.welcome-two__img>img {
    width: 100%;
    border-radius: 50%;
}

.welcome-two__img-shape-1 {
    position: absolute;
    top: 120px;
    left: -41px;
    height: 95px;
    width: 95px;
    background-color: #000000;
    border-radius: 50%;
    -webkit-animation-name: shapeMover;
    animation-name: shapeMover;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-perspective: 100px;
    perspective: 100px;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.welcome-two__img-shape-2 {
    position: absolute;
    bottom: -60px;
    right: 57px;
    height: 180px;
    width: 180px;
    background-color: #f2d00d;
    border-radius: 50%;
    z-index: -1;
    animation-name: shapeMover;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-perspective: 100px;
    perspective: 100px;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.welcome-two__right {
    position: relative;
    display: block;
}

.welcome-two__right .section-title {
    margin-bottom: 38px;
}

.welcome-two__text {
    margin: 0;
}

.welcome-two__icon-box {
    margin-top: 49px;
}

.welcome-two__icon-box-img {
    position: relative;
    display: block;
    margin-right: 40px;
}

.welcome-two__icon-box-img>img {
    width: 100%;
}

.welcome-two__icon-list-box {
    position: relative;
    display: block;
    margin-left: -40px;
}

.welcome-two__icon-list {
    margin: 0;
}

.welcome-two__icon-list li {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 24px;
    margin-bottom: 29px;
}

.welcome-two__icon-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.welcome-two__icon-list li .icon {}

.welcome-two__icon-list li .icon span {
    font-size: 65px;
    color: #f2d00d;
    line-height: 65px;
    transform: scale(1);
    display: block;
    transition: transform 500ms ease;
}

.welcome-two__icon-list li:hover .icon span {
    transform: scale(.8);
}

.welcome-two__icon-list li .text-box {
    margin-left: 30px;
}

.welcome-two__icon-list li .text-box p {
    margin: 0;
}


